home *** CD-ROM | disk | FTP | other *** search
- /*
- * bc.h
- *
- * Practical Algorithms for Image Analysis
- *
- * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
- */
- #ifndef _BC_H_
- #define _BC_H_
-
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- #include <malloc.h>
-
- #include "ip.h"
-
- /*
- * Function prototypes
- */
- extern void main (int, char **);
- extern void usage (char *);
- extern void backgrd_correct (Image *, Image *, Image *, int, int);
-
- #endif
- /*_BC_H_ */
-